home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0295.lzh / AMOSLIST / text0091.txt < prev    next >
Encoding:
Text File  |  1995-03-01  |  1.7 KB  |  53 lines

  1.  
  2.  > 
  3.  > I'm programming with a friend of mine an arcade game called
  4.  > Dark Ages. Five levels including different places and dif-
  5.  > ferent enemies to fight. But during programming i had some
  6.  > problems. Amos Pro doesn't allow user to use differents
  7.  > sprite or bob banks at the same time. There are no commands
  8.  > like SPRITE BANK n or USE SPRITE BANK n and so i would like
  9.  > to know if i'm wrong and if there are others ways to
  10.  > use more bob banks in a game.
  11.  > 
  12.  > Bye.
  13.  > Luca (aldo@di.unito.it)
  14.  > -----------------------
  15.  > 
  16.  
  17.  Hello Luca!
  18.  
  19. > Why not use only one bank? If it's because you have different sprites
  20. > at different levels of the game, you could just save the sprites
  21. > at position 100*level+spritenum in your bank (if you have less than 100
  22. > sprites per level) and get them back easily.
  23. > Another possibility is simply to load the other bank over the old
  24. > one. This takes 0.1 seconds from harddisk and is okay if you switch
  25. > only at the end of the levels.
  26. > Maybe I just don't understand the real problem...? 
  27. > Greetings,
  28. >     Chris
  29. >
  30. You understanded the real problem!If your method works fine, well, i'll try it
  31. soon,but my other problem is this:
  32. in my game, player can choose from 3 or for different warriors. I think that
  33. every warrior will be composed by 20-30 frames. Total is of 80-120 frames only
  34. for your warriors. I think Amos Sprite bank contains only 256 sprites, so
  35. i have to copy all main warriors in every sprite bank (one for level) and
  36. put others sprites in the others cells of the sprite bank (>120..).In this way
  37. i will get five sprite banks,every one with more then 200 sprite's images!!!!!
  38.  
  39. It's too hard.....
  40.  
  41. However, thanks a lot....
  42.  
  43. Luca (aldo@di.unito.it)
  44. ----------------------
  45.  
  46.  
  47.